home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / LDB171.ARJ / EXAMP203.CPP < prev    next >
Text File  |  1992-05-12  |  390b  |  20 lines

  1.      // examp203.cpp - link with binder.obj
  2.  
  3.      #define   FType    int
  4.      #define   FBinder  IntBdr
  5.      #define   FBindeR  IntBdR
  6.  
  7.      #include  "fbinder.hpp"
  8.  
  9.      main()
  10.      {
  11.           IntBdr b(BDR_DDELETE|BDR_DNEW,5);
  12.  
  13.           for (int i = 0; b.insQNew(&i); i++);
  14.  
  15.           while (++b)
  16.                cout << *(int *)b << "\n";
  17.  
  18.           return 0;
  19.      }
  20.